summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2001-10-13 23:04:44 +0000
committercvs2svn Import User <samba-bugs@samba.org>2001-10-13 23:04:44 +0000
commita2e5af64329e90ca0a819be9a28892513d6d46ad (patch)
tree371e2df0a8ec5878494b957d7c36ac419e18a875
parentc506f958333d5dfc51fa5d1318c84d3d98fc8616 (diff)
downloadsamba-2.2.2.tar.gz
This commit was manufactured by cvs2svn to create tagsamba-2.2.2
'release-2-2-2'.
-rw-r--r--examples/libsmbclient/Makefile25
-rw-r--r--examples/libsmbclient/README8
-rw-r--r--testsuite/lib/default-nt-names.exp20
3 files changed, 0 insertions, 53 deletions
diff --git a/examples/libsmbclient/Makefile b/examples/libsmbclient/Makefile
deleted file mode 100644
index 8c1def8a162..00000000000
--- a/examples/libsmbclient/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-CC = gcc
-
-SAMBA_INCL = ../../source/include
-
-CFLAGS = -I$(SAMBA_INCL)
-
-LDFLAGS = -L/usr/lib
-
-all: testsmbc tree
-
-testsmbc: testsmbc.o
- @echo Linking testsmbc
- @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lsmbclient
-
-testsmbc-static: testsmbc.o
- @echo Linking testsmbc
- @$(CC) $(CFLAGS) -static $(LDFLAGS) -o $@ $< -lsmbclient -ldl -lnsl
-
-tree: tree.o
- @echo Linking tree
- @$(CC) `gtk-config --cflags` $(CFLAGS) $(LDFLAGS) -o $@ `gtk-config --libs` -lsmbclient $<
-
-clean:
- @rm -f *.o *~
diff --git a/examples/libsmbclient/README b/examples/libsmbclient/README
deleted file mode 100644
index d9a9f829174..00000000000
--- a/examples/libsmbclient/README
+++ /dev/null
@@ -1,8 +0,0 @@
-Some simple example programs for libsmbclient ...
-
-testsmbc.c is kinda broken as it has many hardcoded bits in it
-
-tree.c is an example of how you might do some of these things with GTK+
-It needs lots of work but shows you some ways to use libsmbclient.
-
-Richard Sharpe, 17-May-2001 ...
diff --git a/testsuite/lib/default-nt-names.exp b/testsuite/lib/default-nt-names.exp
deleted file mode 100644
index 5d01d2a5bb3..00000000000
--- a/testsuite/lib/default-nt-names.exp
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# A list of default domain/local users/groups. Unfortunately this is tied
-# to the English language version of Windows NT.
-#
-
-global domain
-
-# Domain users and groups
-
-set domain_users [list "$domain/Administrator" "$domain/Guest"]
-
-set domain_groups [list "$domain/Domain Admins" "$domain/Domain Guests" \
- "$domain/Domain Users"]
-
-# Local groups
-
-set local_groups [list "BUILTIN/Replicator" "BUILTIN/Server Operators" \
- "BUILTIN/Account Operators" "BUILTIN/Backup Operators" \
- "BUILTIN/Print Operators" "BUILTIN/Guests" "BUILTIN/Users" \
- "BUILTIN/Administrators"]