Skip to content

Commit

Permalink
Fix install process, fix missing include rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Diablo-D3 committed Mar 29, 2012
1 parent d02a8c1 commit e254de4
Show file tree
Hide file tree
Showing 16 changed files with 14 additions and 18 deletions.
2 changes: 0 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -4867,8 +4867,6 @@ fi
done
ac_config_files="$ac_config_files buildsys.mk extra.mk libmowgli-2.pc"
cat >confcache <<\_ACEOF
Expand Down
2 changes: 0 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ AC_SUBST(EXAMPLES_BUILD)
BUILDSYS_INIT
BUILDSYS_TOUCH_DEPS

AC_SUBST(PACKAGE_NAME)

AC_CONFIG_FILES([buildsys.mk extra.mk libmowgli-2.pc])
AC_OUTPUT

Expand Down
2 changes: 1 addition & 1 deletion src/libmowgli/base/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ INCLUDES = argstack.h \

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/base
includesubdir = $(PACKAGE_NAME)/base

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/concurrent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDES := ${SRCS:.c=.h}

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/concurrent
includesubdir = $(PACKAGE_NAME)/concurrent

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/container/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ INCLUDES = list.h \

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/container
includesubdir = $(PACKAGE_NAME)/container

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/core/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ INCLUDES = bootstrap.h \

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/core
includesubdir = $(PACKAGE_NAME)/core

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/eventloop/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDES = eventloop.h

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/eventloop
includesubdir = $(PACKAGE_NAME)/eventloop

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/ext/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ INCLUDES = confparse.h \

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/ext
includesubdir = $(PACKAGE_NAME)/ext

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/linebuf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDES = linebuf.h

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/linebuf
includesubdir = $(PACKAGE_NAME)/linebuf

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/module/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDES = module.h

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/module
includesubdir = $(PACKAGE_NAME)/module

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/mowgli.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ MOWGLI_DECLS_START
#include "container/queue.h"
#include "base/hash.h"
#include "core/heap.h"
#include "core/init.h"
#include "core/bootstrap.h"
#include "base/bitvector.h"
#include "base/hook.h"
#include "base/mowgli_signal.h"
Expand Down
2 changes: 1 addition & 1 deletion src/libmowgli/object/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ INCLUDES = object.h \

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/object
includesubdir = $(PACKAGE_NAME)/object

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/platform/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ INCLUDES = constructor.h machine.h

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/platform
includesubdir = $(PACKAGE_NAME)/platform

include ../../../extra.mk
2 changes: 1 addition & 1 deletion src/libmowgli/platform/win32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDES = win32_stdinc.h

include ../../../../buildsys.mk

includesubdir = $(PACKAGE)/platform/win32
includesubdir = $(PACKAGE_NAME)/platform/win32

CPPFLAGS += -I. -I.. -I../.. -I../../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/thread/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ INCLUDES = thread.h mutex.h

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/thread
includesubdir = $(PACKAGE_NAME)/thread

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

2 changes: 1 addition & 1 deletion src/libmowgli/vio/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ INCLUDES = vio.h

include ../../../buildsys.mk

includesubdir = $(PACKAGE)/vio
includesubdir = $(PACKAGE_NAME)/vio

CPPFLAGS += -I. -I.. -I../../.. -DMOWGLI_CORE

0 comments on commit e254de4

Please sign in to comment.