1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-03 06:45:51 +01:00

- Made all changes for moving WINGs headers in the WINGs subdirectory.

- Updated get-{wings|wutil}-flags accordingly
This commit is contained in:
dan
2001-01-18 19:21:56 +00:00
parent 6a3b06e609
commit a20aebdef2
37 changed files with 59 additions and 57 deletions

View File

@@ -3,6 +3,10 @@ changes since wmaker 0.63.1:
- added WMRunModalLoop() and WMBreakModalLoop()
- added WMSetBoxExpandsToParent()
- added WMRemoveBoxSubview()
- moved WINGs headers in a WINGs subdirectory when installed.
use #include <WINGs/header_file_name> in your application from now on.
Also updated get-{wings|wutil}-flags.
changes since wmaker 0.62.1:
............................

View File

@@ -23,7 +23,7 @@
#include <unistd.h>
#include <string.h>
#include "WINGs.h"
#include <WINGs/WINGs.h>

View File

@@ -24,8 +24,8 @@
#include <stdlib.h>
#include <stdio.h>
#include "WINGs.h"
#include "WUtil.h"
#include <WINGs/WINGs.h>
#include <WINGs/WUtil.h>
void
wAbort()

View File

@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <WINGs.h>
#include <WINGs/WINGs.h>

View File

@@ -1,6 +1,6 @@
#include <WINGs.h>
#include <WINGs/WINGs.h>
#include "wtableview.h"
#include "wtabledelegates.h"

View File

@@ -1,6 +1,6 @@
#include <WINGs.h>
#include <WINGs/WINGs.h>
#include "wtableview.h"

View File

@@ -1,6 +1,6 @@
#include <WINGsP.h>
#include <WINGs/WINGsP.h>
#include <X11/cursorfont.h>
#include "wtableview.h"

View File

@@ -2,17 +2,12 @@
AUTOMAKE_OPTIONS = no-dependencies
SUBDIRS = . Documentation Resources Examples Extras Tests
SUBDIRS = WINGs . Documentation Resources Examples Extras Tests
#libWINGs_la_LDFLAGS = -version-info 1:1:0
# is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs
include_HEADERS = WINGs.h WUtil.h WINGsP.h
bin_SCRIPTS = get-wings-flags get-wutil-flags
lib_LIBRARIES = libWINGs.a libWUtil.a
@@ -21,12 +16,10 @@ lib_LIBRARIES = libWINGs.a libWUtil.a
LDADD= libWINGs.a $(top_builddir)/wrlib/libwraster.la @LIBPL@
EXTRA_DIST = BUGS WINGs
EXTRA_DIST = BUGS
# wbutton.c
libWINGs_a_SOURCES = \
WINGs.h \
WINGsP.h \
array.c \
bagtree.c \
configuration.c \
@@ -82,8 +75,6 @@ libWINGs_a_SOURCES = \
libWUtil_a_SOURCES = \
WINGs.h \
WINGsP.h \
array.c \
bagtree.c \
connection.c \
@@ -103,7 +94,7 @@ libWUtil_a_SOURCES = \
wutil.c
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
INCLUDES = -I$(top_srcdir)/WINGs/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG

View File

@@ -14,7 +14,7 @@
*
*
*/
#include "WINGsP.h"
#include <WINGs/WINGsP.h>
/*
* Our public header.

View File

@@ -3,7 +3,7 @@
*/
#include "WINGs.h"
#include <WINGs/WINGs.h>
#include <unistd.h>
#include <stdio.h>

View File

@@ -1,7 +1,6 @@
#include <WINGs.h>
#include <WUtil.h>
#include <WINGs/WINGs.h>
#include "mywidget.h"

View File

@@ -13,7 +13,7 @@
#include "WINGs.h"
#include <WINGs/WINGs.h>
#include <unistd.h>
#include <stdio.h>

View File

@@ -4,7 +4,7 @@
*/
#include "WINGs.h"
#include <WINGs/WINGs.h>
#include <unistd.h>
#include <stdio.h>

View File

@@ -2,7 +2,7 @@
* WINGs test application
*/
#include "WINGs.h"
#include <WINGs/WINGs.h>
#include <stdio.h>
@@ -1206,7 +1206,6 @@ testDragAndDrop(WMScreen *scr)
/*******************************************************************/
#include "WUtil.h"
void
testUD()

1
WINGs/WINGs/.cvsignore Normal file
View File

@@ -0,0 +1 @@
Makefile Makefile.in

9
WINGs/WINGs/Makefile.am Normal file
View File

@@ -0,0 +1,9 @@
## automake input file for WINGs - Headers subdir
AUTOMAKE_OPTIONS = no-dependencies
# is this a kluge? if so, how should i do it?
includedir = @includedir@/WINGs
include_HEADERS = WINGs.h WUtil.h WINGsP.h