mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-24 15:48:28 +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:
parent
827874e3e7
commit
aec4c082f3
@ -9,7 +9,7 @@
|
||||
<ignoreparts/>
|
||||
<projectdirectory>.</projectdirectory>
|
||||
<absoluteprojectpath>false</absoluteprojectpath>
|
||||
<description></description>
|
||||
<description/>
|
||||
<versioncontrol/>
|
||||
<secondaryLanguages/>
|
||||
</general>
|
||||
@ -22,7 +22,7 @@
|
||||
<mainprogram>conky</mainprogram>
|
||||
<directoryradio>build</directoryradio>
|
||||
<customdirectory>/</customdirectory>
|
||||
<programargs></programargs>
|
||||
<programargs/>
|
||||
<terminal>false</terminal>
|
||||
<autocompile>true</autocompile>
|
||||
<envvars/>
|
||||
@ -39,14 +39,14 @@
|
||||
<cflags>-O2 -pipe</cflags>
|
||||
<envvars/>
|
||||
<configargs>--prefix=/usr --enable-mpd --enable-xft --enable-seti --enable-double-buffer --enable-own-window --enable-metar --enable-mldonkey</configargs>
|
||||
<topsourcedir></topsourcedir>
|
||||
<cppflags></cppflags>
|
||||
<ldflags></ldflags>
|
||||
<ccompilerbinary></ccompilerbinary>
|
||||
<cxxcompilerbinary></cxxcompilerbinary>
|
||||
<f77compilerbinary></f77compilerbinary>
|
||||
<cxxflags></cxxflags>
|
||||
<f77flags></f77flags>
|
||||
<topsourcedir/>
|
||||
<cppflags/>
|
||||
<ldflags/>
|
||||
<ccompilerbinary/>
|
||||
<cxxcompilerbinary/>
|
||||
<f77compilerbinary/>
|
||||
<cxxflags/>
|
||||
<f77flags/>
|
||||
</optimized>
|
||||
<debug>
|
||||
<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>
|
||||
<cflags>-O2 -Wall</cflags>
|
||||
<envvars/>
|
||||
<topsourcedir></topsourcedir>
|
||||
<cppflags></cppflags>
|
||||
<ldflags></ldflags>
|
||||
<ccompilerbinary></ccompilerbinary>
|
||||
<cxxcompilerbinary></cxxcompilerbinary>
|
||||
<f77compilerbinary></f77compilerbinary>
|
||||
<topsourcedir/>
|
||||
<cppflags/>
|
||||
<ldflags/>
|
||||
<ccompilerbinary/>
|
||||
<cxxcompilerbinary/>
|
||||
<f77compilerbinary/>
|
||||
<cxxflags>-O2 -Wall</cxxflags>
|
||||
<f77flags></f77flags>
|
||||
<f77flags/>
|
||||
</debug>
|
||||
</configurations>
|
||||
<make>
|
||||
@ -74,18 +74,18 @@
|
||||
<abortonerror>true</abortonerror>
|
||||
<numberofjobs>1</numberofjobs>
|
||||
<dontact>false</dontact>
|
||||
<makebin></makebin>
|
||||
<makebin/>
|
||||
<prio>0</prio>
|
||||
</make>
|
||||
</kdevautoproject>
|
||||
<kdevdebugger>
|
||||
<general>
|
||||
<dbgshell>libtool</dbgshell>
|
||||
<programargs></programargs>
|
||||
<gdbpath></gdbpath>
|
||||
<configGdbScript></configGdbScript>
|
||||
<runShellScript></runShellScript>
|
||||
<runGdbScript></runGdbScript>
|
||||
<programargs/>
|
||||
<gdbpath/>
|
||||
<configGdbScript/>
|
||||
<runShellScript/>
|
||||
<runGdbScript/>
|
||||
<breakonloadinglibs>true</breakonloadinglibs>
|
||||
<separatetty>false</separatetty>
|
||||
<floatingtoolbar>false</floatingtoolbar>
|
||||
@ -192,9 +192,9 @@
|
||||
</cppsupportpart>
|
||||
<kdevdocumentation>
|
||||
<projectdoc>
|
||||
<docsystem></docsystem>
|
||||
<docurl></docurl>
|
||||
<usermanualurl></usermanualurl>
|
||||
<docsystem/>
|
||||
<docurl/>
|
||||
<usermanualurl/>
|
||||
</projectdoc>
|
||||
</kdevdocumentation>
|
||||
<ctagspart>
|
||||
|
21
autogen.sh
21
autogen.sh
@ -1,29 +1,34 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -x aclocal-1.9 ]
|
||||
alocver=1.9
|
||||
aheadver=2.59
|
||||
amakever=1.9
|
||||
aconfver=2.59
|
||||
|
||||
if [ -x aclocal-$alocver ]
|
||||
then
|
||||
aclocal-1.9
|
||||
aclocal-$alocver
|
||||
else
|
||||
aclocal
|
||||
fi
|
||||
|
||||
if [ -x autoheader-2.59 ]
|
||||
if [ -x autoheader-$aheadver ]
|
||||
then
|
||||
autoheader-2.59
|
||||
autoheader-$aheadver
|
||||
else
|
||||
autoheader
|
||||
fi
|
||||
|
||||
if [ -x automake-1.9 ]
|
||||
if [ -x automake-$amakever ]
|
||||
then
|
||||
automake-1.9 -a
|
||||
automake-$amakever -a
|
||||
else
|
||||
automake
|
||||
fi
|
||||
|
||||
if [ -x autoconf-2.59 ]
|
||||
if [ -x autoconf-$aconfver ]
|
||||
then
|
||||
autoconf-2.59
|
||||
autoconf-$aconfver
|
||||
else
|
||||
autoconf
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user