mirror of
https://github.com/anope/anope.git
synced 2026-07-04 22:53:12 +02:00
BUILD : 1.7.14 (1075) BUGS : N/A NOTES : multiple file modules now respect mod_version, and ./configure is checked for and executed.
git-svn-id: svn://svn.anope.org/anope/trunk@1075 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@799 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
5dd84294b7
commit
6bb8ba1f1f
@@ -39,6 +39,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
06/20 F Make does not recompile everything even on no change anymore. [ #00]
|
||||
06/20 F Versions in win32.rc are now updated correctly. [#526]
|
||||
06/21 F Syntax for NickServ SET MSG showed syntax for SET PRIVATE. [ #00]
|
||||
06/26 F A few small bugs with module configure scripts. [ #00]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2006
|
||||
05/19 A Plexus 3 support. [ #00]
|
||||
|
||||
@@ -24,7 +24,7 @@ distclean: spotless
|
||||
$(CC) ${CFLAGS} ${CDEFS} ${MODULEFLAGS} -I../${INCLUDEDIR} -c $<
|
||||
|
||||
.o.s:
|
||||
$(CC) ${SHARED} ../mod_version.o $< -o $*.so ${PROFILE}
|
||||
$(CC) ${SHARED} ../mod_version.o $< -o $*.so ${LDFLAGS} ${PROFILE}
|
||||
@$(TOUCH) $*.s
|
||||
|
||||
subs:
|
||||
|
||||
@@ -19,7 +19,7 @@ distclean: spotless
|
||||
$(CC) ${CFLAGS} ${CDEFS} ${MODULEFLAGS} -I../ -I../../${INCLUDEDIR} -c $<
|
||||
|
||||
so:
|
||||
$(CC) ${SHARED} $(OBJECTS) -o ../$(TARGET).so ${PROFILE}
|
||||
$(CC) ${SHARED}../../mod_version.o $(OBJECTS) -o ../$(TARGET).so ${LDFLAGS} ${PROFILE}
|
||||
|
||||
clean:
|
||||
rm -f *.o *.so *.c~ core
|
||||
|
||||
Vendored
+5
@@ -37,6 +37,11 @@ FIRST=1
|
||||
for dir in *
|
||||
do
|
||||
if [ -d $dir ] ; then
|
||||
if [ -f $dir/configure ] ; then
|
||||
cd $dir
|
||||
./configure
|
||||
cd ..
|
||||
fi
|
||||
if [ -f $dir/Makefile ] ; then
|
||||
if [ "$FIRST" = 1 ] ; then
|
||||
echo2 " "$dir >> ./Makefile.inc
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="14"
|
||||
VERSION_EXTRA=""
|
||||
VERSION_BUILD="1074"
|
||||
VERSION_BUILD="1075"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.14 (1075)
|
||||
# BUGS : N/A
|
||||
# NOTES : multiple file modules now respect mod_version, and ./configure is checked for and executed.
|
||||
#
|
||||
# BUILD : 1.7.14 (1074)
|
||||
# BUGS : N/A
|
||||
# NOTES : Small patch by ThaPrince for ircds with modes on id
|
||||
|
||||
Reference in New Issue
Block a user