Displaying 11 results from an estimated 11 matches for "splitoff".
2024 Aug 22
1
Question about nut-dependencies
...w years ago, it is not too hard to maintain a patch against upstream to trim down the dependencies. If you don't need the Eaton NetXML driver and its dependencies like neon, don't build it. You can change any "BuildDepends: foo" to a "BuildConflicts: foo", and remove the splitoff that packages that up (e.g. https://github.com/fink/fink-distributions/blob/master/10.9-libcxx/stable/main/finkinfo/net/nut.info#L225 ). Sometimes there are ./configure options that need to be removed as well, but usually the BuildConflicts will prevent the library from being visible to the configu...
2013 Aug 07
1
[PATCH] drm/nouveau: fix ltcg memory corruptions
...drivers/gpu/drm/nouveau/core/core/mm.c b/drivers/gpu/drm/nouveau/core/core/mm.c
index d829172..7a4e089 100644
--- a/drivers/gpu/drm/nouveau/core/core/mm.c
+++ b/drivers/gpu/drm/nouveau/core/core/mm.c
@@ -98,6 +98,8 @@ nouveau_mm_head(struct nouveau_mm *mm, u8 type, u32 size_max, u32 size_min,
 	u32 splitoff;
 	u32 s, e;
 
+	BUG_ON(!type);
+
 	list_for_each_entry(this, &mm->free, fl_entry) {
 		e = this->offset + this->length;
 		s = this->offset;
@@ -162,6 +164,8 @@ nouveau_mm_tail(struct nouveau_mm *mm, u8 type, u32 size_max, u32 size_min,
 	struct nouveau_mm_node *prev, *this, *next;...
2013 Aug 12
0
[PATCH] drm/nouveau: fix ltcg allocating memory as free
...drivers/gpu/drm/nouveau/core/core/mm.c b/drivers/gpu/drm/nouveau/core/core/mm.c
index d829172..7a4e089 100644
--- a/drivers/gpu/drm/nouveau/core/core/mm.c
+++ b/drivers/gpu/drm/nouveau/core/core/mm.c
@@ -98,6 +98,8 @@ nouveau_mm_head(struct nouveau_mm *mm, u8 type, u32 size_max, u32 size_min,
 	u32 splitoff;
 	u32 s, e;
 
+	BUG_ON(!type);
+
 	list_for_each_entry(this, &mm->free, fl_entry) {
 		e = this->offset + this->length;
 		s = this->offset;
@@ -162,6 +164,8 @@ nouveau_mm_tail(struct nouveau_mm *mm, u8 type, u32 size_max, u32 size_min,
 	struct nouveau_mm_node *prev, *this, *next;...
2019 Jan 23
0
Newbie - SNMP-UPS Driver Issue
...;https://github.com/Homebrew/homebrew-core/blob/master/Formula/nut.rb#L52>
I don't use Brew, so I am not sure if it is easier to adapt their configuration to compile against SNMP libraries, or if you can get Brew to coexist with Fink. The SNMP drivers for NUT are in the "nut-snmp" splitoff in Fink:
http://pdb.finkproject.org/pdb/package.php/nut-snmp <http://pdb.finkproject.org/pdb/package.php/nut-snmp>
I maintain the Fink package of NUT, so let me know if you have any questions. I have not tested against Mojave yet.
> I tried to look at the gist hub repos and dowloaded th...
2019 Jan 22
2
Newbie - SNMP-UPS Driver Issue
Hello all,
I have exhausted my research and need a little help with some basic concepts. First time configuration working with NUT and putting into a OS X environment. Was able to install the package using Brew. Have read the documentation and have been able to get the server running and agent running using MACOSX-UPS driver and connect to UPS via USB. I would however like to integrate a TrippLite
2024 Aug 21
2
Question about nut-dependencies
I am new to the email list and a recent fan of the NUT software. I have
been deploying Windows, Ubuntu, and MacOS clients. I am dealing with very
old machines, attempting to keep them running at an office where they
cannot upgrade the machines due to software dependencies.
I was recently trying to get a client using Mac Ports and it would not
build on my target machines, MacOS 10.5 and 10.6 due
2007 Dec 28
2
[LLVMdev] fink llvm-gcc42 test packaging
...info/libgomp.info %i/share/info/llvm-libgomp.info
 mv %i/share/info/gfortran.info %i/share/info/llvm-gfortran.info
 # remove build path from .la files
 perl -pi -e "s, \-L[^ ']*/%n-%v-%r/llvm_objdir/Release/lib[^ ']*,,g" `find %i/lib/llvm-gcc-4.2/lib -name '*.la'`
<<
SplitOff: <<
  Package: %N-shlibs
  Description: Shared libraries for llvm-gcc42
  Files: <<
        lib/llvm-gcc-4.2/lib/libgfortran.2*.dylib
        lib/llvm-gcc-4.2/lib/libgomp.1*.dylib
        lib/llvm-gcc-4.2/lib/libgcc_s.1*.dylib
        lib/llvm-gcc-4.2/%lib/libgfortran.2*.dylib
        l...
2010 Apr 13
4
[LLVMdev] darwin dragon-egg build issues
...lvm-link
 ln -s %p/lib/llvm/bin/llvm-nm %i/bin/llvm-nm
 ln -s %p/lib/llvm/bin/llvm-prof  %i/bin/llvm-prof
 ln -s %p/lib/llvm/bin/llvm-ranlib %i/bin/llvm-ranlib
 ln -s %p/lib/llvm/bin/llvm-stub %i/bin/llvm-stub
 ln -s %p/lib/llvm/bin/llvmc %i/bin/llvmc
 ln -s %p/lib/llvm/bin/opt %i/bin/opt
 <<
SplitOff: <<
  Package: %N-shlibs
  Files: <<
     lib/llvm/lib/libEnhancedDisassembly.dylib
     lib/llvm/lib/libLLVMHello.dylib
     lib/llvm/lib/libprofile_rt.dylib
     lib/llvm/lib/libLTO.dylib
  << 
  Shlibs: <<
     !%p/lib/llvm/lib/libEnhancedDisassembly.dylib
     !%p/lib/ll...
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
Attached is a working patch set for llvm to be able to emit arm64 
(currently as triple aarch64-apple-ios) mach-o object files, in case 
someone is interested. I'm not sure if the llvm maintainers want the 
patch given the previous message that there's going to be an official 
patch set from apple to support this, but here is mine.
What works (tested on an iPhone 5S):
* objc strings,
2010 Apr 11
0
[LLVMdev] darwin dragon-egg build issues
On 04/10/2010 08:01 PM, Jack Howarth wrote:
> 
> bash-3.2$ GCC=/sw/bin/gcc-4 CC=gcc-4 CXX=g++-4 CFLAGS=-I/sw/include CXXFLAGS=-I/sw/include LLVM_CONFIG=/sw/lib/llvm/bin/llvm-config make
> g++-4 -c  -I/sw/lib/llvm/include  -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -MD -MP -DIN_GCC -DREVISION=\"100954M\"
2010 Apr 11
7
[LLVMdev] darwin dragon-egg build issues
On Sat, Apr 10, 2010 at 01:52:18PM +0200, Duncan Sands wrote:
> Hi Jack,
> 
> >     Is anyone building dragon-egg on darwin?
> 
> Anton built it once.  There were some problems with dynamic libraries: gcc's
> plugin support requires the use of dynamic libraries, and the configure logic
> it uses thinks that darwin does not support dynamic libraries!  So it is
>