1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00

Set package version variables in autogen.sh to remove hardcode

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@56 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Joe Myre 2005-08-04 18:11:34 +00:00
parent 827874e3e7
commit aec4c082f3
2 changed files with 39 additions and 34 deletions

View File

@ -9,7 +9,7 @@
<ignoreparts/> <ignoreparts/>
<projectdirectory>.</projectdirectory> <projectdirectory>.</projectdirectory>
<absoluteprojectpath>false</absoluteprojectpath> <absoluteprojectpath>false</absoluteprojectpath>
<description></description> <description/>
<versioncontrol/> <versioncontrol/>
<secondaryLanguages/> <secondaryLanguages/>
</general> </general>
@ -22,7 +22,7 @@
<mainprogram>conky</mainprogram> <mainprogram>conky</mainprogram>
<directoryradio>build</directoryradio> <directoryradio>build</directoryradio>
<customdirectory>/</customdirectory> <customdirectory>/</customdirectory>
<programargs></programargs> <programargs/>
<terminal>false</terminal> <terminal>false</terminal>
<autocompile>true</autocompile> <autocompile>true</autocompile>
<envvars/> <envvars/>
@ -39,14 +39,14 @@
<cflags>-O2 -pipe</cflags> <cflags>-O2 -pipe</cflags>
<envvars/> <envvars/>
<configargs>--prefix=/usr --enable-mpd --enable-xft --enable-seti --enable-double-buffer --enable-own-window --enable-metar --enable-mldonkey</configargs> <configargs>--prefix=/usr --enable-mpd --enable-xft --enable-seti --enable-double-buffer --enable-own-window --enable-metar --enable-mldonkey</configargs>
<topsourcedir></topsourcedir> <topsourcedir/>
<cppflags></cppflags> <cppflags/>
<ldflags></ldflags> <ldflags/>
<ccompilerbinary></ccompilerbinary> <ccompilerbinary/>
<cxxcompilerbinary></cxxcompilerbinary> <cxxcompilerbinary/>
<f77compilerbinary></f77compilerbinary> <f77compilerbinary/>
<cxxflags></cxxflags> <cxxflags/>
<f77flags></f77flags> <f77flags/>
</optimized> </optimized>
<debug> <debug>
<configargs>--enable-debug=full --prefix=/usr --enable-xft --enable-double-buffer --enable-own-window --enable-metar --enable-mldonkey</configargs> <configargs>--enable-debug=full --prefix=/usr --enable-xft --enable-double-buffer --enable-own-window --enable-metar --enable-mldonkey</configargs>
@ -56,14 +56,14 @@
<f77compiler>kdevpgf77options</f77compiler> <f77compiler>kdevpgf77options</f77compiler>
<cflags>-O2 -Wall</cflags> <cflags>-O2 -Wall</cflags>
<envvars/> <envvars/>
<topsourcedir></topsourcedir> <topsourcedir/>
<cppflags></cppflags> <cppflags/>
<ldflags></ldflags> <ldflags/>
<ccompilerbinary></ccompilerbinary> <ccompilerbinary/>
<cxxcompilerbinary></cxxcompilerbinary> <cxxcompilerbinary/>
<f77compilerbinary></f77compilerbinary> <f77compilerbinary/>
<cxxflags>-O2 -Wall</cxxflags> <cxxflags>-O2 -Wall</cxxflags>
<f77flags></f77flags> <f77flags/>
</debug> </debug>
</configurations> </configurations>
<make> <make>
@ -74,18 +74,18 @@
<abortonerror>true</abortonerror> <abortonerror>true</abortonerror>
<numberofjobs>1</numberofjobs> <numberofjobs>1</numberofjobs>
<dontact>false</dontact> <dontact>false</dontact>
<makebin></makebin> <makebin/>
<prio>0</prio> <prio>0</prio>
</make> </make>
</kdevautoproject> </kdevautoproject>
<kdevdebugger> <kdevdebugger>
<general> <general>
<dbgshell>libtool</dbgshell> <dbgshell>libtool</dbgshell>
<programargs></programargs> <programargs/>
<gdbpath></gdbpath> <gdbpath/>
<configGdbScript></configGdbScript> <configGdbScript/>
<runShellScript></runShellScript> <runShellScript/>
<runGdbScript></runGdbScript> <runGdbScript/>
<breakonloadinglibs>true</breakonloadinglibs> <breakonloadinglibs>true</breakonloadinglibs>
<separatetty>false</separatetty> <separatetty>false</separatetty>
<floatingtoolbar>false</floatingtoolbar> <floatingtoolbar>false</floatingtoolbar>
@ -192,9 +192,9 @@
</cppsupportpart> </cppsupportpart>
<kdevdocumentation> <kdevdocumentation>
<projectdoc> <projectdoc>
<docsystem></docsystem> <docsystem/>
<docurl></docurl> <docurl/>
<usermanualurl></usermanualurl> <usermanualurl/>
</projectdoc> </projectdoc>
</kdevdocumentation> </kdevdocumentation>
<ctagspart> <ctagspart>

View File

@ -1,29 +1,34 @@
#!/bin/sh #!/bin/sh
if [ -x aclocal-1.9 ] alocver=1.9
aheadver=2.59
amakever=1.9
aconfver=2.59
if [ -x aclocal-$alocver ]
then then
aclocal-1.9 aclocal-$alocver
else else
aclocal aclocal
fi fi
if [ -x autoheader-2.59 ] if [ -x autoheader-$aheadver ]
then then
autoheader-2.59 autoheader-$aheadver
else else
autoheader autoheader
fi fi
if [ -x automake-1.9 ] if [ -x automake-$amakever ]
then then
automake-1.9 -a automake-$amakever -a
else else
automake automake
fi fi
if [ -x autoconf-2.59 ] if [ -x autoconf-$aconfver ]
then then
autoconf-2.59 autoconf-$aconfver
else else
autoconf autoconf
fi fi