From 40b2171a9910a2ea37d6b083921d6c08317928fb Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sun, 12 Dec 2021 17:13:52 +0500 Subject: [PATCH] Move repo --- README.md | 22 ++++++++++------------ configure.ac | 4 ++-- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 005a750..080c6db 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ libkernaux ========== -[![Build Status](https://travis-ci.org/kernelmq/libkernaux.svg?branch=master)](https://travis-ci.org/kernelmq/libkernaux) - Auxiliary library for kernel development. @@ -46,10 +44,10 @@ Configure with cross-compiler in `$PATH` to make without it in `$PATH`: ``` ./configure \ - --host='i386-elfkernelmq' \ - AR="$(which i386-elfkernelmq-ar)" \ - CC="$(which i386-elfkernelmq-gcc)" \ - RANLIB="$(which i386-elfkernelmq-ranlib)" \ + --host='i386-elftailix' \ + AR="$(which i386-elftailix-ar)" \ + CC="$(which i386-elftailix-gcc)" \ + RANLIB="$(which i386-elftailix-ranlib)" \ CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector' ``` @@ -66,9 +64,9 @@ configure: WARNING: stdarg.h: check for missing prerequisite headers? configure: WARNING: stdarg.h: see the Autoconf documentation configure: WARNING: stdarg.h: section "Present But Cannot Be Compiled" configure: WARNING: stdarg.h: proceeding with the compiler's result -configure: WARNING: ## ------------------------------------------------------------ ## -configure: WARNING: ## Report this to https://github.com/kernelmq/libkernaux/issues ## -configure: WARNING: ## ------------------------------------------------------------ ## +configure: WARNING: ## ---------------------------------------------------------- ## +configure: WARNING: ## Report this to https://github.com/tailix/libkernaux/issues ## +configure: WARNING: ## ---------------------------------------------------------- ## checking for stdarg.h... no checking stddef.h usability... no checking stddef.h presence... yes @@ -77,9 +75,9 @@ configure: WARNING: stddef.h: check for missing prerequisite headers? configure: WARNING: stddef.h: see the Autoconf documentation configure: WARNING: stddef.h: section "Present But Cannot Be Compiled" configure: WARNING: stddef.h: proceeding with the compiler's result -configure: WARNING: ## ------------------------------------------------------------ ## -configure: WARNING: ## Report this to https://github.com/kernelmq/libkernaux/issues ## -configure: WARNING: ## ------------------------------------------------------------ ## +configure: WARNING: ## ---------------------------------------------------------- ## +configure: WARNING: ## Report this to https://github.com/tailix/libkernaux/issues ## +configure: WARNING: ## ---------------------------------------------------------- ## checking for stddef.h... no ``` diff --git a/configure.ac b/configure.ac index 4c4c5c4..fb5bd97 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ([2.68]) AC_INIT([libkernaux], [0.0.0], - [https://github.com/kernelmq/libkernaux/issues], + [https://github.com/tailix/libkernaux/issues], [libkernaux], - [https://github.com/kernelmq/libkernaux]) + [https://github.com/tailix/libkernaux]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([src/pfa.c])