mirror of
https://github.com/paulusmack/ppp.git
synced 2024-11-26 21:07:01 +08:00
bdd34ab1f2
This change does a few different things. * Projects that needs #include "config.h" should use a config.h.in for the project generated by configure in the project's local directory. * All projects will use #include <pppd/pppd.h>, and Makefile will add -I${top_srcdir} to the appropriate *_CPPFLAGS variable. * The inclusion of <pppd/pppdconf.h> will set the presidence for all features enabled/disabled in pppd * Plugins will now need to use PPPD_VERSION as it conflicts with VERSION from config.h generated by autotools for third party packages Currently, only pppoe require the use of config.h to correctly set the defines for which header files and so on was detected by configure Other projects only needed to include <pppd/pppd.h> (and maybe a few other header files), a future change will fixup <pppd/pppd.h> to include features as needed such that it's the only needed include for a plugin. This will avoid littering the code with #ifdef/#endif constructs. BREAKING CHANGE! pppd/pppd.h no longer provide VERSION, third party packages are required to switch to use PPPD_VERSION. This is to avoid conflict with a source package's own VERSION as set by autotools / config.h. Also, the use of PPP_VERSION conflicts with public header files from Glibc/Linux kernel. Example: char pppd_version[] = PPPD_VERSION; pppd will load plugins, and also look for the symbol "pppd_version" to validate that the plugin was built for the current version of pppd. Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
62 lines
743 B
Plaintext
62 lines
743 B
Plaintext
*.orig
|
|
*~
|
|
*.o
|
|
*.so
|
|
*.a
|
|
*.pc
|
|
*.cat8
|
|
*.lo
|
|
*.la
|
|
*.swp
|
|
.deps
|
|
.libs
|
|
|
|
|
|
# http://www.gnu.org/software/autoconf
|
|
autom4te.cache
|
|
/autoscan.log
|
|
/autoscan-*.log
|
|
/aclocal.m4
|
|
/compile
|
|
/config.cache
|
|
/config.guess
|
|
/config.log
|
|
/config.status
|
|
/config.sub
|
|
/configure
|
|
/configure.scan
|
|
/depcomp
|
|
/install-sh
|
|
/test-driver
|
|
/missing
|
|
/INSTALL
|
|
/pppd/stamp-h1
|
|
/pppd/stamp-h2
|
|
/pppd/config.h
|
|
/pppd/config.h.in
|
|
/pppd/pppdconf.h
|
|
/pppd/plugins/pppoe/config.h
|
|
/pppd/plugins/pppoe/stamp-h3
|
|
|
|
# https://www.gnu.org/software/libtool/
|
|
/libtool
|
|
/ltmain.sh
|
|
|
|
# http://www.gnu.org/software/m4/
|
|
m4/libtool.m4
|
|
m4/ltoptions.m4
|
|
m4/ltsugar.m4
|
|
m4/ltversion.m4
|
|
m4/lt~obsolete.m4
|
|
|
|
# Generated Makefile
|
|
Makefile
|
|
Makefile.in
|
|
|
|
# Test related stuff
|
|
utest_*
|
|
test-suite.log
|
|
|
|
# Distfiles
|
|
/ppp-*.tar.gz
|