summaryrefslogtreecommitdiffstats
path: root/stubs
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-06-23 10:09:43 -0400
committerPeter Jones <pjones@vroomfondel.internal.datastacks.com>2008-06-23 10:16:41 -0400
commit215683cedac4d0aa4164044df9e6c94819df2e62 (patch)
treec6648fc7a3712b8fffafce318817bd6843ccab9c /stubs
parent88ff6f629b9ed91865f97c6794a536b8f5e9b314 (diff)
downloadanaconda-215683cedac4d0aa4164044df9e6c94819df2e62.tar.gz
anaconda-215683cedac4d0aa4164044df9e6c94819df2e62.tar.xz
anaconda-215683cedac4d0aa4164044df9e6c94819df2e62.zip
Get rid of wlite and unicode-lite; these were necessary to support
static linking.
Diffstat (limited to 'stubs')
-rw-r--r--stubs/Makefile44
-rw-r--r--stubs/unicode-lite.c126
2 files changed, 0 insertions, 170 deletions
diff --git a/stubs/Makefile b/stubs/Makefile
deleted file mode 100644
index dbb252222..000000000
--- a/stubs/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Makefile
-#
-# Copyright (C) 2007 Red Hat, Inc. All rights reserved.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-
-include ../Makefile.inc
-
-LIBUTF8 = libunicode-lite.so.1
-
-OBJECTS = unicode-lite.o
-
-TARGETS= $(LIBUTF8)
-
-all: $(TARGETS) libunicode-lite.a
-
-CFLAGS += -I../wlite/
-
-$(LIBUTF8): unicode-lite.c
- gcc -fPIC -shared -I../wlite/ -o $@ $< -D_FORTIFY_SOURCE=2 ../wlite/libwlite.a $(LDFLAGS)
-
-libunicode-lite.a: libunicode-lite.a($(OBJECTS))
-
-clean:
- rm -f *.so.* *.o *.a
-
-install:
- mkdir -p $(DESTDIR)/$(RUNTIMEDIR)
- for lib in $(TARGETS) ; do install $$lib $(DESTDIR)/$(RUNTIMEDIR) ; done
-
-depend:
diff --git a/stubs/unicode-lite.c b/stubs/unicode-lite.c
deleted file mode 100644
index 4651e4cd9..000000000
--- a/stubs/unicode-lite.c
+++ /dev/null
@@ -1,126 +0,0 @@
-/*
- * unicode-lite.c - simple library to LD_PRELOAD for emulation of
- * wide character functionality when glibc gconv data isn't available
- *
- * Copyright (C) 2002 Red Hat, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Author(s): Matt Wilson <msw@redhat.com>
- * Jeremy Katz <katzj@redhat.com>
- */
-
-#include <stdlib.h>
-#include <string.h>
-#include <locale.h>
-
-#define WLITE_REDEF_STDC 0
-#include <wlite_wchar.h>
-#include <wlite_wctype.h>
-
-
-int wcwidth (wchar_t c) {
- return wlite_wcwidth(c);
-}
-
-size_t mbrtowc (wchar_t *pwc, const char *s, size_t n, void *ps) {
- return wlite_mbrtowc (pwc, s, n, ps);
-}
-
-int iswspace (wchar_t c) {
- return wlite_iswctype((c), wlite_space_);
-}
-
-size_t wcrtomb(char *s, wchar_t wc, void *ps) {
- return wlite_wcrtomb (s, wc, ps);
-}
-
-const char * __dgettext(const char * domainname, const char * msgid) {
- return msgid;
-}
-
-const char * __dcgettext(const char * domainname, const char * msgid,
- int category) {
- return msgid;
-}
-
-/* Define ALIASNAME as a strong alias for NAME. */
-# define strong_alias(name, aliasname) _strong_alias(name, aliasname)
-# define _strong_alias(name, aliasname) \
- extern __typeof (name) aliasname __attribute__ ((alias (#name)));
-
-strong_alias (__dgettext, dgettext);
-strong_alias (__dcgettext, dcgettext);
-
-/* lie to slang to trick it into using unicode chars for linedrawing */
-char *setlocale (int category, const char *locale) {
- if (locale == NULL || *locale == '\0') {
- if (!strcmp("vt100-nav", getenv("TERM")))
- return "en_US";
- else
- return "en_US.UTF-8";
- }
- return NULL;
-}
-
-/* lie to slang some more */
-char *nl_langinfo(int item) {
- return NULL;
-}
-
-# define __libc_freeres_fn_section \
- __attribute__ ((section ("__libc_freeres_fn")))
-
-void __libc_freeres_fn_section ___nl_locale_subfreeres (void) {}
-strong_alias (___nl_locale_subfreeres, _nl_locale_subfreeres);
-
-const char *const _nl_category_names[] = {
- [LC_COLLATE] = "LC_COLLATE",
- [LC_CTYPE] = "LC_CTYPE",
- [LC_MONETARY] = "LC_MONETARY",
- [LC_NUMERIC] = "LC_NUMERIC",
- [LC_TIME] = "LC_TIME",
- [LC_MESSAGES] = "LC_MESSAGES",
- [LC_PAPER] = "LC_PAPER",
- [LC_NAME] = "LC_NAME",
- [LC_ADDRESS] = "LC_ADDRESS",
- [LC_TELEPHONE] = "LC_TELEPHONE",
- [LC_MEASUREMENT] = "LC_MEASUREMENT",
- [LC_IDENTIFICATION] = "LC_IDENTIFCATION",
- [LC_ALL] = "LC_ALL"
-};
-
-u_int8_t my_nl_category_name_idxs[1] = {0};
-strong_alias (my_nl_category_name_idxs, _nl_category_name_idxs);
-
-const size_t _nl_category_name_sizes[] = {
- [LC_COLLATE] = sizeof("LC_COLLATE") - 1,
- [LC_CTYPE] = sizeof("LC_CTYPE") -1,
- [LC_MONETARY] = sizeof("LC_MONETARY") -1,
- [LC_NUMERIC] = sizeof("LC_NUMERIC") -1,
- [LC_TIME] = sizeof("LC_TIME") -1,
- [LC_MESSAGES] = sizeof("LC_MESSAGES") -1,
- [LC_PAPER] = sizeof("LC_PAPER") -1,
- [LC_NAME] = sizeof("LC_NAME") -1,
- [LC_ADDRESS] = sizeof("LC_ADDRESS") -1,
- [LC_TELEPHONE] = sizeof("LC_TELEPHONE") -1,
- [LC_MEASUREMENT] = sizeof("LC_MEASUREMENT") -1,
- [LC_IDENTIFICATION] = sizeof("LC_IDENTIFCATION") -1,
- [LC_ALL] = sizeof("LC_ALL")
-};
-
-/* avoid bringing in glibc's setlocale.o - we want to use our
- fake setlocale() */
-typedef pthread_mutex_t __libc_lock_t;
-__libc_lock_t __libc_setlocale_lock;