Removed target-specific compiler flags from makefile.
This commit is contained in:
parent
011df9b8fd
commit
651f3b4a6b
2 changed files with 14 additions and 3 deletions
11
ChangeLog
11
ChangeLog
|
|
@ -1,4 +1,13 @@
|
||||||
2005-09-02 hydro23 <Dale Mellor <dale@dmellor.dabsol.co.uk>>
|
2008-01-25 Dale Mellor <Dale Mellor <dale_mellor@users.sourceforge.net>>
|
||||||
|
|
||||||
|
* makefile.am: Moved target-specific CFLAGS and LDFLAGS to global
|
||||||
|
AM_* variables, to remove problem with automake requiring
|
||||||
|
AM_PROGS_CC_C_O in configure.ac (!)
|
||||||
|
|
||||||
|
* Version is currently at 1.0.3.
|
||||||
|
|
||||||
|
|
||||||
|
2005-09-02 hydro23 <Dale Mellor <dale_mellor@users.sourceforge.net>>
|
||||||
|
|
||||||
* makefile.am, mcron.c.template (main): Modified install-exec-hook
|
* makefile.am, mcron.c.template (main): Modified install-exec-hook
|
||||||
so that a proper installation of a Vixie-compatible cron only
|
so that a proper installation of a Vixie-compatible cron only
|
||||||
|
|
|
||||||
|
|
@ -30,11 +30,13 @@ EXTRA_DIST = makefile.ed main.scm mcron-core.scm vixie-specification.scm \
|
||||||
crontab.scm environment.scm job-specifier.scm redirect.scm \
|
crontab.scm environment.scm job-specifier.scm redirect.scm \
|
||||||
vixie-time.scm mcron.c.template BUGS
|
vixie-time.scm mcron.c.template BUGS
|
||||||
|
|
||||||
|
AM_LDFLAGS = @GUILE_LDFLAGS@
|
||||||
|
AM_CFLAGS = @GUILE_CFLAGS@ -DGUILE_LOAD_PATH=\"$(datadir)\"
|
||||||
|
|
||||||
info_TEXINFOS = mcron.texinfo
|
info_TEXINFOS = mcron.texinfo
|
||||||
|
|
||||||
bin_PROGRAMS = mcron
|
bin_PROGRAMS = mcron
|
||||||
mcron_SOURCES = mcron.c
|
mcron_SOURCES = mcron.c
|
||||||
mcron_LDFLAGS = @GUILE_LDFLAGS@
|
|
||||||
mcron_CFLAGS = @GUILE_CFLAGS@ -DGUILE_LOAD_PATH=\"$(datadir)\"
|
|
||||||
|
|
||||||
pkgdata_DATA = core.scm environment.scm job-specifier.scm redirect.scm \
|
pkgdata_DATA = core.scm environment.scm job-specifier.scm redirect.scm \
|
||||||
vixie-time.scm vixie-specification.scm config.scm
|
vixie-time.scm vixie-specification.scm config.scm
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue