1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-05 21:07:52 +00:00

prevent libtool from adding its default CFLAGS

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@705 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Philip Kovacs 2006-09-30 19:21:58 +00:00
parent 53feb898b9
commit ff1fefda7c
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# $Id$ # $Id$
2006-09-30
* --enable-debug added.
* prevent libtool from adding its default CFLAGS
2006-09-28 2006-09-28
* Use pkg-config instead of xft-config. * Use pkg-config instead of xft-config.
* Fix last line bug which had required padding text with extra blank line * Fix last line bug which had required padding text with extra blank line

View File

@ -6,6 +6,12 @@ dnl
dnl C Compiler dnl C Compiler
dnl dnl
dnl prevent libtool setting LTCFLAGS to default of -g -O2 when CFLAGS unset.
dnl libtool must be deleted with make distclean to see this fix.
if test x"$CFLAGS" = x""; then
AC_SUBST(CFLAGS, [ ])
fi
AC_PROG_CC AC_PROG_CC
AC_PROG_LIBTOOL AC_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG([0.17.2]) PKG_PROG_PKG_CONFIG([0.17.2])